testing.matcher.fullName (method)
9 uses
testing (current package)
benchmark.go#L691: if _, matched, _ := bstate.match.fullName(nil, Benchmark.Name); matched {
benchmark.go#L798: benchName, ok, partial = b.bstate.match.fullName(&b.common, name)
example.go#L36: _, matched, _ := m.fullName(nil, eg.Name)
fuzz.go#L406: if _, ok, _ := f.tstate.match.fullName(nil, name); ok {
fuzz.go#L505: testName, matched, _ := tstate.match.fullName(nil, ft.Name)
fuzz.go#L510: if _, fuzzMatched, _ := mFuzz.fullName(nil, ft.Name); fuzzMatched {
fuzz.go#L584: name, ok, _ := tstate.match.fullName(nil, fuzzTests[i].Name)
match.go#L83: func (m *matcher) fullName(c *common, subname string) (name string, ok, partial bool) {
testing.go#L1812: testName, ok, _ := t.tstate.match.fullName(&t.common, name)